home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / GOD14-(412)695-3647.adf / DiskMasterV2.02.fixes.pp / DiskMasterV2.02.fixes
Text File  |  1992-08-04  |  4KB  |  112 lines

  1. Fixes 2.00 -> 2.02
  2.  
  3. Title bar clock update under 2.0
  4.  
  5. Archive files with spaces (quotes)
  6.  
  7. Multiple sources with 'unmark off' commands (i.e. SizeCheck)
  8.  
  9. 'Read %s SEARCH' automatically starts, and skips to next file when it reaches
  10.  the end.
  11.  
  12. Default Arc extract menu item was missing a space. "Arc <*x %s"
  13.  
  14. Doesn't assume device names are null terminated.
  15.  
  16. In batch files, ";" as the first character can be used to comment out a line.
  17.  
  18. Fixed startup lock stuff:
  19.     OpenWindow
  20.     Lock S
  21.     OpenWindow
  22.     Lock D
  23. This was not locking the source window.
  24.  
  25. Single and doubles quotes can be intermixed like ARexx.
  26.  
  27.  
  28. Additions/changes:
  29.  
  30. About and other requesters will show the version/revision number in the title.
  31. Added "Copy %s %d RENAME" (asks for new filename while copying)
  32. Added %P (source path without filename)
  33.       %R (requester string)
  34.  
  35. -------------------------------------------------------------------------------
  36. AddKeyCmd [K,batch_string]                Add a keyboard command
  37.  
  38.   AddKey c,Copy %s %d
  39.     Press "c" to begin a file copy
  40.  
  41.   AddKey C,Copy %s
  42.     Press SHIFT+C to start a copy that requests dest path
  43.  
  44. -------------------------------------------------------------------------------
  45. AddAutoCmd    [data,pattern,batch_string]    Adds an auto command to the list.
  46.  
  47.         DEFAULT & TEXT can be anywhere now, instead of just at the end.
  48.         This also lets you add while it's running, so no text editor
  49.         is needed.
  50.  
  51.         I've also added a file matching pattern.
  52.         This is still compatible with the old format.
  53.  
  54.  
  55.   AddAutoCmd FORM????ILBM, ShowPic %s
  56.     the old way
  57.   AddAutoCmd FORM????ILBM, *.iff, ShowPic %s
  58.     the file must end with ".IFF" and must match the data pattern also
  59.  
  60.   AddAutoCmd , *.iff, ShowPic %s
  61.     The data doesn't matter, but the filename must end with .IFF
  62.  
  63. -------------------------------------------------------------------------------
  64. Confirm     "text" [Continue] [Stop] [edit text]    Ask user before continuing
  65.  
  66.   Confirm "Are you sure" "Yes" "No"
  67.     If user selects "No", the operation will cancel
  68.  
  69.   Confirm "Enter new text" "Ok" "Cancel" "Text to edit"
  70.     Text is modified by user and is accessed as %R
  71.     (also returned in RESULT for AREXX)
  72.  
  73. -------------------------------------------------------------------------------
  74. HostScreen    name                Use a public screen as a host
  75.  
  76.   HostScreen BAUD
  77.     All windows after this will open on the BaudBandit screen.
  78.  
  79. -------------------------------------------------------------------------------
  80. OpenScreen    [depth] [LACE|HALF]        Open a custom screen
  81.         [A|AutoScroll width height]
  82.         [P|Productivity] [S|SuperHires] (these two not tested)
  83.  
  84.   OpenScreen 3 LACE
  85.     Opens an 8 color screen in interlace
  86.  
  87.   OpenScreen 2 LACE A 1024 1024
  88.     4 color autoscroll 1024x1024 (under 2.0 only)
  89.  
  90. -------------------------------------------------------------------------------
  91. Status V
  92.     returns "DiskMaster V2.02" or whatever the current version is
  93.  
  94. -------------------------------------------------------------------------------
  95. Status H
  96.     Public screeen name or host screen 
  97.  
  98. -------------------------------------------------------------------------------
  99. Status D
  100.     Destination path
  101.  
  102. -------------------------------------------------------------------------------
  103.  
  104. Examples using %P & %R
  105.  
  106. ;Extracts to dest (works in DM 2.0):
  107. AddMenu Archives, Lharc X >Dest , StdIO "CON:0/12/640/100/Extract Window";Extern CD %d \Lharc <* x %s;StdIO CLOSE
  108.  
  109. ;Extracts to user entered path (%P is default in requester, %R is what the user entered)
  110. AddMenu Archives, Lharc X req   , StdIO "CON:0/12/640/100/Extract Window";Confirm "Enter dest path" Continue Cancel %p;Extern CD %r \Lharc <* x %s;StdIO CLOSE
  111.  
  112.